/* Stemmery — Typography tokens
   Cormorant Garamond — the elegant voice (logo, headlines, large quotes).
   Jost — the clean voice (body, UI, labels). Labels/nav set in
   letter-spaced uppercase Jost for an editorial feel. */

:root {
  /* ---- Families ---- */
  --font-serif: 'Cormorant Garamond', 'Cormorant', Georgia, 'Times New Roman', serif;
  --font-sans:  'Jost', 'Futura', 'Century Gothic', system-ui, sans-serif;
  --font-display: var(--font-serif);
  --font-body:    var(--font-sans);

  /* ---- Weights ---- */
  --weight-light:   300;
  --weight-regular: 400;
  --weight-medium:  500;
  --weight-semibold: 600;

  /* ---- Display scale (Cormorant Garamond) ---- */
  --text-display:  clamp(3rem, 6vw, 5.25rem);  /* hero wordmark / statements */
  --text-h1:       clamp(2.25rem, 4vw, 3.5rem);
  --text-h2:       clamp(1.75rem, 3vw, 2.5rem);
  --text-h3:       1.5rem;
  --text-quote:    clamp(1.5rem, 2.5vw, 2.25rem);

  /* ---- Body & UI scale (Jost) ---- */
  --text-lead:  1.25rem;   /* intro paragraphs */
  --text-base:  1rem;      /* body copy */
  --text-sm:    0.875rem;  /* secondary */
  --text-xs:    0.75rem;   /* captions, fine print */
  --text-label: 0.75rem;   /* uppercase eyebrow labels */

  /* ---- Line heights ---- */
  --leading-tight:  1.1;   /* display headlines */
  --leading-snug:   1.25;  /* sub-heads */
  --leading-normal: 1.6;   /* body */
  --leading-relaxed: 1.75; /* long-form */

  /* ---- Letter spacing ---- */
  --tracking-display: -0.01em; /* serif display sits tight */
  --tracking-normal:  0;
  --tracking-label:   0.18em;  /* uppercase Jost eyebrows */
  --tracking-wide:    0.08em;
}
