/* ==========================================================================
   Nowa — Typography tokens
   Single family: Poppins. The whole system is set small and quiet — 13px
   body, 14px controls — with weight (not size) carrying most hierarchy.
   NOTE: Nowa's ".fw-semibold" maps to 500, not 600. Kept faithfully below.
   ========================================================================== */
:root {
  /* ---- Families ---- */
  --default-font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-sans: var(--default-font-family);
  --font-heading: var(--default-font-family);
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* ---- Weights ---- */
  --default-font-weight: 400; /* @kind font */
  --fw-normal: 400; /* @kind font */
  --fw-medium: 500; /* @kind font */   /* Nowa calls this "semibold" */
  --fw-semibold: 600; /* @kind font */
  --fw-bold: 700; /* @kind font */

  /* ---- Base sizes ---- */
  --default-font-size: 0.813rem;  /* 13px — global body default          */
  --text-body: 0.813rem;          /* 13px                                */
  --text-control: 0.875rem;       /* 14px — inputs, buttons, labels      */
  --fs-sm: 0.6875rem;             /* 11px — meta / captions              */
  --fs-base: 0.875rem;            /* 14px                                */
  --fs-lg: 1.125rem;              /* 18px                                */

  /* ---- Heading scale ---- */
  --text-h1: 2.1875rem;   /* 35px  */
  --text-h2: 1.65rem;     /* 26.4  */
  --text-h3: 1.53125rem;  /* 24.5  */
  --text-h4: 1.3125rem;   /* 21    */
  --text-h5: 1.09375rem;  /* 17.5  */
  --text-h6: 0.875rem;    /* 14    */

  /* ---- Line-heights ---- */
  --leading-tight: 1.2; /* @kind font */
  --leading-snug: 1.4; /* @kind font */
  --leading-base: 1.5; /* @kind font */
  --leading-relaxed: 1.6; /* @kind font */  /* used by form controls */

  /* ---- Letter-spacing ---- */
  --tracking-normal: 0; /* @kind font */
  --tracking-wide: 0.5px; /* @kind font */   /* uppercase card titles / eyebrows */
}
