/* ============================================================
   Anton Scaffolding — Typography tokens
   Display = Anton (all-caps, condensed, heavy — the wordmark
   voice). Text/UI = Barlow. Eyebrows/labels = Barlow Semi
   Condensed, uppercase, tracked out.
   ============================================================ */

:root {
  /* Families */
  --font-display: "Anton", "Barlow Semi Condensed", Impact, sans-serif;
  --font-sans:    "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-condensed: "Barlow Semi Condensed", "Barlow", sans-serif;
  --font-mono:    ui-monospace, Menlo, Consolas, monospace;

  /* Type scale (rem, 1rem = 16px) */
  --text-2xs:  0.6875rem;  /* 11 */
  --text-xs:   0.75rem;    /* 12 */
  --text-sm:   0.875rem;   /* 14 */
  --text-base: 1rem;       /* 16 */
  --text-md:   1.125rem;   /* 18 */
  --text-lg:   1.25rem;    /* 20 */
  --text-xl:   1.5rem;     /* 24 */
  --text-2xl:  1.875rem;   /* 30 */
  --text-3xl:  2.375rem;   /* 38 */
  --text-4xl:  3rem;       /* 48 */
  --text-5xl:  3.875rem;   /* 62 */
  --text-6xl:  5rem;       /* 80 */
  --text-7xl:  6.5rem;     /* 104 — hero display */

  /* Weights (Anton is single-weight 400; Barlow carries weights) */
  --weight-regular: 400;
  --weight-medium:  500;
  --weight-semibold: 600;
  --weight-bold:    700;

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

  /* Letter spacing */
  --tracking-display: -0.01em;  /* Anton: very slight tighten */
  --tracking-tight:   -0.015em;
  --tracking-normal:  0;
  --tracking-wide:    0.04em;
  --tracking-eyebrow: 0.14em;   /* uppercase eyebrows/labels */

  /* Semantic roles */
  --display-font: var(--font-display);
  --display-tracking: var(--tracking-display);
  --heading-font: var(--font-sans);
  --heading-weight: var(--weight-bold);
  --body-font: var(--font-sans);
  --eyebrow-font: var(--font-condensed);
}
