/* ─────────────────────────────────────────────────────────
   Joy Ann Llamas — Typography tokens
   Elegant serif for headlines, clean sans for everything to read.
   Source: Brand Database v1, §08 Typography.
   ───────────────────────────────────────────────────────── */

:root {
  /* ---- Font families ---- */
  --font-display:      'Cormorant Garamond', Georgia, serif;
  --font-display-alt:  'Libre Baskerville', Georgia, serif;
  --font-body:         'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:         'JetBrains Mono', ui-monospace, monospace;

  /* ---- Weights ---- */
  --weight-display-regular: 400;
  --weight-display-medium:  500;
  --weight-display-semi:    600;
  --weight-display-bold:    700;
  --weight-body-light:      300;
  --weight-body-regular:    400;
  --weight-body-medium:     500;
  --weight-body-semi:       600;

  /* ---- Type scale — display (Cormorant Garamond) ---- */
  --text-display-hero:  clamp(32px, 5vw, 56px);   /* hero lines, e.g. "Find your dream home." */
  --text-h1:            48px;   /* line-height 1.05 */
  --text-h2:            32px;   /* line-height 1.10 */
  --text-h3:            22px;   /* line-height 1.20 — pull quotes */

  /* ---- Type scale — body (Montserrat) ---- */
  --text-body:          15px;   /* line-height 1.6 */
  --text-body-sm:       13px;
  --text-caption:       12.5px;
  --text-eyebrow:       11px;   /* letter-spacing .22em, uppercase */
  --text-micro:         9.5px;  /* sidebar labels, mono tags */

  /* ---- Line heights ---- */
  --leading-display-hero: 0.95;
  --leading-h1: 1.05;
  --leading-h2: 1.10;
  --leading-h3: 1.20;
  --leading-body: 1.6;
  --leading-tight: 1.15;

  /* ---- Letter spacing ---- */
  --tracking-eyebrow: 0.22em;   /* uppercase mono labels, e.g. "07.A" */
  --tracking-caps:    0.18em;
  --tracking-wide:    0.06em;
  --tracking-normal:  0;
}
