/* ============================================================
   Runit — Typography tokens
   Display face is the bespoke geometric wordmark relative:
   adineue PRO KZ Light. It is monoline, wide, all-lowercase in
   brand usage. Pair it ONLY with SF Pro for running text.
   ============================================================ */
:root {
  /* Families */
  --font-display: "adineue PRO KZ", "SF Pro", system-ui, sans-serif;
  --font-sans:    "SF Pro", "Core Sans A", -apple-system, system-ui, sans-serif;
  --font-support: "Core Sans A", "SF Pro", system-ui, sans-serif;
  --font-mono:    "SF Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Weights (adineue ships Light only → display always 300) */
  --fw-display:   300; /* @kind other */
  --fw-regular:   400; /* @kind other */
  --fw-medium:    500; /* @kind other */
  --fw-semibold:  600; /* @kind other */
  --fw-bold:      700; /* @kind other */

  /* Type scale — 1.25 major-third, rounded to whole px */
  --text-2xs: 11px;
  --text-xs:  12px;
  --text-sm:  14px;
  --text-md:  16px;   /* base body */
  --text-lg:  18px;
  --text-xl:  22px;
  --text-2xl: 28px;
  --text-3xl: 36px;
  --text-4xl: 46px;
  --text-5xl: 60px;
  --text-6xl: 80px;

  /* Line heights */
  --leading-tight:   1.05;   /* display */
  --leading-snug:    1.2;
  --leading-normal:  1.5;    /* body */
  --leading-relaxed: 1.65;

  /* Tracking — the display face is tightened for a crafted, expensive read;
     SF Pro near-neutral; caps labels open wide. */
  --tracking-display: -0.02em;
  --tracking-tight:   -0.015em;
  --tracking-normal:  0em;
  --tracking-wide:    0.04em;
  --tracking-caps:    0.18em;   /* eyebrow / THE SIMPLE WAY lockup */

  /* Semantic roles */
  --heading-font: var(--font-display);
  --body-font:    var(--font-sans);
  --label-font:   var(--font-sans);
}
