/* ============================================================
   Grace & Truth Church — Typography tokens
   Display: Cormorant Garamond (refined, scriptural serif)
   Body:    Mulish (clean humanist sans)
   Labels:  Mulish uppercase, letterspaced (echoes site section heads)
   ============================================================ */

:root {
  /* ---- Families ---- */
  --font-display: "Poppins", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Mulish", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-label: "Mulish", "Segoe UI", -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

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

  /* ---- Fluid display scale (geometric sans) ---- */
  --text-display-1: clamp(3.25rem, calc(1.6rem + 5.6vw), 5.75rem); /* hero */
  --text-display-2: clamp(2.5rem, calc(1.5rem + 3.6vw), 4.25rem);
  --text-h1: clamp(2.15rem, calc(1.4rem + 2.6vw), 3.25rem);
  --text-h2: clamp(1.75rem, calc(1.25rem + 1.7vw), 2.5rem);
  --text-h3: clamp(1.4rem, calc(1.1rem + 1.0vw), 1.85rem);
  --text-h4: 1.3rem;

  /* ---- Body scale (sans) ---- */
  --text-lead: 1.3rem;   /* intro paragraphs */
  --text-lg: 1.125rem;
  --text-base: 1rem;
  --text-sm: 0.9375rem;
  --text-xs: 0.8125rem;

  /* ---- Label / eyebrow ---- */
  --text-label: 0.8125rem;
  --tracking-label: 0.18em;
  --tracking-label-tight: 0.1em;

  /* ---- Line heights ---- */
  --leading-tight: 1.08;
  --leading-snug: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  /* ---- Tracking ---- */
  --tracking-tight: -0.01em;
  --tracking-normal: 0;
  --tracking-wide: 0.02em;
}
