/* ============================================================
   Montari — Typography tokens
   Display: PP Editorial New (sub: Playfair Display) — huge, tight,
     chrome-gradient, electric glow on ONE key word.
   Body/UI: Geist.  Numbers / labels / tech-accents: Geist Mono.
   ============================================================ */

:root {
  /* ---- Families ---- */
  --font-display: 'PP Editorial New', 'Playfair Display', 'Cal Sans', Georgia, serif;
  --font-body: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'SF Mono', 'Roboto Mono', monospace;

  /* ---- Fluid display scale (clamp to ~7vw) ---- */
  --text-hero: clamp(2.9rem, 7vw, 6.5rem);     /* hero headline */
  --text-display: clamp(2.4rem, 5.2vw, 4.5rem);/* section openers */
  --text-h1: clamp(2rem, 3.6vw, 3.1rem);
  --text-h2: clamp(1.6rem, 2.6vw, 2.25rem);
  --text-h3: clamp(1.3rem, 1.8vw, 1.6rem);

  /* ---- Body / UI scale (fixed) ---- */
  --text-body-lg: 1.25rem;   /* 20px — sub-heads, lead paragraphs */
  --text-body: 1.0625rem;    /* 17px — default body */
  --text-sm: 0.9375rem;      /* 15px */
  --text-xs: 0.8125rem;      /* 13px */
  --text-label: 0.75rem;     /* 12px — mono eyebrow labels */

  /* ---- Weights ---- */
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-display: 500;     /* Playfair medium reads premium, not bridal */
  --weight-display-bold: 600;

  /* ---- Line heights ---- */
  --leading-display: 1.02;
  --leading-tight: 1.1;
  --leading-snug: 1.28;
  --leading-body: 1.6;
  --leading-loose: 1.75;

  /* ---- Letter spacing ---- */
  --tracking-display: -0.02em;  /* tight on big serif */
  --tracking-tight: -0.01em;
  --tracking-normal: 0;
  --tracking-wide: 0.04em;
  --tracking-label: 0.22em;     /* mono eyebrow labels, UPPERCASE */
}
