/* ============================================================
   THE AGENCY — TYPOGRAPHY TOKENS
   Brand fonts (licensed, used in print/closed systems):
     · Flama Ultracondensed Basic  — primary display headlines
     · Blacker Pro Display (R/Ital) — elegant serif headlines
     · DIN 2014 Regular             — body, labels, subheads
   Brand-sanctioned DIGITAL fallbacks (Manual p.12 "Approved
   Google Fonts") — what this system actually ships:
     · Barlow Condensed   ↔ Flama Ultracondensed
     · Noto Serif Display ↔ Blacker Pro Display
     · Roboto             ↔ DIN 2014
   ============================================================ */

:root {
  /* ---- Families ---- */
  --font-condensed: 'Flama Ultracondensed Basic', 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-serif:     'Blacker Pro Display', 'Noto Serif Display', Georgia, 'Times New Roman', serif;
  --font-sans:      'DIN 2014', 'Roboto', Arial, Helvetica, sans-serif;

  /* ---- Role aliases ---- */
  --font-display:   var(--font-condensed); /* big all-caps headlines */
  --font-heading:   var(--font-serif);     /* chic serif headings */
  --font-body:      var(--font-sans);      /* paragraphs + UI */
  --font-label:     var(--font-sans);      /* caps labels / eyebrows */

  /* ---- Weights ---- */
  --weight-light:   300;
  --weight-regular: 400;
  --weight-medium:  500;
  --weight-semibold:600;
  --weight-bold:    700;
  --weight-black:   800;

  /* ---- Type scale (display sizes lean large + condensed) ---- */
  --text-display-2xl: 7rem;     /* 112px — hero condensed caps */
  --text-display-xl:  4.5rem;   /* 72px */
  --text-display-lg:  3.25rem;  /* 52px */
  --text-display-md:  2.25rem;  /* 36px */
  --text-h1:          2.5rem;   /* 40px serif */
  --text-h2:          1.875rem; /* 30px */
  --text-h3:          1.375rem; /* 22px */
  --text-lg:          1.125rem; /* 18px */
  --text-base:        1rem;     /* 16px body */
  --text-sm:          0.875rem; /* 14px */
  --text-xs:          0.75rem;  /* 12px labels */
  --text-2xs:         0.6875rem;/* 11px fine print / disclaimers */

  /* ---- Line heights ---- */
  --leading-tight:    1.02;  /* condensed display */
  --leading-snug:     1.18;  /* serif headings */
  --leading-normal:   1.55;  /* body */
  --leading-relaxed:  1.7;

  /* ---- Tracking (Manual specifies "tracking 75" for caps) ---- */
  --tracking-tight:   -0.01em;
  --tracking-normal:  0;
  --tracking-caps:    0.075em; /* tracking 75 — display caps */
  --tracking-label:   0.18em;  /* wider for small eyebrow labels */
}
