/* ============================================================
   automatIQ process — Typography tokens
   Display / headings: Open Sans     Body / UI: Noto Sans
   Code / metrics accents: JetBrains Mono
   ============================================================ */
:root {
  /* Families */
  --font-display: "Open Sans", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Noto Sans", "Segoe UI", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Weights */
  --fw-regular:  400; /* @kind font */
  --fw-medium:   500; /* @kind font */
  --fw-semibold: 600; /* @kind font */
  --fw-bold:     700; /* @kind font */
  --fw-extrabold: 800; /* @kind font */

  /* Type scale (1.250 major-third-ish, tuned) */
  --text-xs:   0.75rem;   /* 12 */
  --text-sm:   0.875rem;  /* 14 */
  --text-base: 1rem;      /* 16 */
  --text-md:   1.125rem;  /* 18 */
  --text-lg:   1.375rem;  /* 22 */
  --text-xl:   1.75rem;   /* 28 */
  --text-2xl:  2.25rem;   /* 36 */
  --text-3xl:  3rem;      /* 48 */
  --text-4xl:  3.75rem;   /* 60 */
  --text-5xl:  4.75rem;   /* 76 */

  /* Line heights */
  --lh-tight:   1.05; /* @kind font */
  --lh-snug:    1.2; /* @kind font */
  --lh-normal:  1.5; /* @kind font */
  --lh-relaxed: 1.65; /* @kind font */

  /* Letter spacing */
  --tracking-tight:  -0.02em; /* @kind font */
  --tracking-snug:   -0.01em; /* @kind font */
  --tracking-normal: 0; /* @kind font */
  --tracking-wide:   0.02em; /* @kind font */
  --tracking-caps:   0.08em; /* @kind font */

  /* Semantic roles */
  --heading-font:   var(--font-display);
  --heading-weight: var(--fw-extrabold);
  --heading-tracking: var(--tracking-tight);
  --body-font:      var(--font-body);
  --body-weight:    var(--fw-regular);
  --body-line:      var(--lh-relaxed);
  --eyebrow-font:   var(--font-display);
  --eyebrow-weight: var(--fw-bold);
}
