/* ============================================================
   isoBOLD — TYPOGRAPHY TOKENS
   Two families do all the work:
     • Inter         — display, headings, UI, body
     • JetBrains Mono — eyebrows, doc IDs, coordinates, metadata,
                        spec-strip labels, code
   Weights stay restrained (400–700). Display is tight-tracked;
   mono labels are wide-tracked and usually UPPERCASE.
   ============================================================ */

:root {
  /* ---------- FAMILIES ---------- */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* ---------- WEIGHTS ---------- */
  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;

  /* ---------- TYPE SCALE (rem @ 16px root) ---------- */
  --text-2xs:  0.6875rem;  /* 11px — dense mono meta, footers      */
  --text-xs:   0.75rem;    /* 12px — mono labels, captions, kbd    */
  --text-sm:   0.8125rem;  /* 13px — secondary UI text             */
  --text-base: 0.875rem;   /* 14px — body / UI default             */
  --text-md:   1rem;       /* 16px — inputs, lead paragraphs       */
  --text-lg:   1.125rem;   /* 18px — card titles                   */
  --text-xl:   1.375rem;   /* 22px — KPI figures, section heads    */
  --text-2xl:  1.75rem;    /* 28px — panel headlines               */
  --text-3xl:  2.25rem;    /* 36px — page titles                   */
  --text-4xl:  3rem;       /* 48px — hero / brief titles           */
  --text-5xl:  4.5rem;     /* 72px — display                       */
  --text-6xl:  6rem;       /* 96px — oversized wordmark            */

  /* fluid hero for marketing scale */
  --text-hero: clamp(2.5rem, 6vw, 6rem);

  /* ---------- LINE HEIGHTS ---------- */
  --leading-none:    0.95;
  --leading-tight:   1.12;
  --leading-snug:    1.3;
  --leading-normal:  1.5;
  --leading-relaxed: 1.62;

  /* ---------- TRACKING ---------- */
  --tracking-display: -0.022em;  /* large Inter headlines       */
  --tracking-tight:   -0.01em;   /* sub-heads                   */
  --tracking-normal:  0;
  --tracking-wide:    0.04em;
  --tracking-label:   0.14em;    /* mono eyebrows / section tags */
  --tracking-mono:    0.06em;    /* default mono body           */
}
