/* ============================================================
   VOREN · TYPOGRAPHY TOKENS
   Alliance No.2 = display / headings (geometric, confident).
   Inter = UI + body. JetBrains Mono = numbers, code, params.
   ============================================================ */
:root {
  /* Families */
  --font-display: 'Alliance No.2', 'Inter', system-ui, sans-serif;
  --font-sans:    'Inter', system-ui, -apple-system, 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 */

  /* Type scale (px, 1.0 base = 16px) */
  --text-xs:   12px;
  --text-sm:   13px;
  --text-base: 14px;   /* default UI body */
  --text-md:   15px;
  --text-lg:   17px;
  --text-xl:   20px;
  --text-2xl:  24px;
  --text-3xl:  30px;
  --text-4xl:  38px;
  --text-5xl:  48px;
  --text-6xl:  64px;
  --text-7xl:  84px;

  /* Line heights */
  --leading-tight:   1.1;
  --leading-snug:    1.25;
  --leading-normal:  1.5;
  --leading-relaxed: 1.65;

  /* Letter spacing */
  --tracking-tighter: -0.03em;
  --tracking-tight:   -0.015em;
  --tracking-normal:  0;
  --tracking-wide:    0.02em;
  --tracking-caps:    0.08em;   /* uppercase eyebrows / labels */
}
