/* ==================================================================
   TYPOGRAPHY — Andy Hutchinson Design System
   Display: Schibsted Grotesk  (editorial headings, titles, lower-thirds)
   Body:    Hanken Grotesk      (clean neutral running text / UI)
   Mono:    JetBrains Mono      (EXIF-style captions, gear specs)
   ================================================================== */
:root {
  /* Families */
  --font-display: 'Schibsted Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Hanken Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

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

  /* Type scale — editorial, generous. rem @ 16px base. */
  --text-xs:   0.75rem;   /* 12px — mono captions, meta */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px — body */
  --text-md:   1.125rem;  /* 18px — lead body */
  --text-lg:   1.375rem;  /* 22px */
  --text-xl:   1.75rem;   /* 28px */
  --text-2xl:  2.25rem;   /* 36px */
  --text-3xl:  3rem;      /* 48px */
  --text-4xl:  4rem;      /* 64px */
  --text-5xl:  5.5rem;    /* 88px — hero / title cards */

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

  /* Letter spacing */
  --tracking-tight:  -0.02em;
  --tracking-snug:   -0.01em;
  --tracking-normal: 0;
  --tracking-wide:   0.08em;
  --tracking-caps:   0.14em;   /* uppercase eyebrows / kickers */

  /* Semantic roles */
  --heading-family: var(--font-display);
  --heading-weight: var(--weight-bold);
  --heading-tracking: var(--tracking-tight);
  --body-family: var(--font-body);
  --body-weight: var(--weight-regular);
  --body-leading: var(--leading-relaxed);
  --eyebrow-family: var(--font-mono);
  --eyebrow-tracking: var(--tracking-caps);
}
