/* muse + gather — Typography tokens */
:root {
  /* Families */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-ui: var(--font-body);

  /* Weights */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Type scale — editorial, generous. rem-based (16px root) */
  --text-display: 4.5rem;   /* 72px — hero */
  --text-h1: 3.25rem;       /* 52px */
  --text-h2: 2.5rem;        /* 40px */
  --text-h3: 1.875rem;      /* 30px */
  --text-h4: 1.375rem;      /* 22px */
  --text-lead: 1.375rem;    /* 22px — standfirst / intro */
  --text-body-lg: 1.1875rem;/* 19px — article body */
  --text-base: 1.0625rem;   /* 17px — UI body */
  --text-sm: 0.9375rem;     /* 15px */
  --text-xs: 0.8125rem;     /* 13px — captions, labels */

  /* Line heights */
  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;   /* long-form reading */

  /* Letter spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.04em;
  --tracking-label: 0.12em; /* uppercase eyebrow labels */
}