/* ==========================================================================
   TYPOGRAPHY — Andrine Mendez
   Display: Archivo (heavy, editorial — "type as art")
   Body:    Archivo (regular/medium)
   Label:   Space Mono (eyebrows, kickers, metadata)
   ========================================================================== */
:root {
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body:    'Archivo', system-ui, sans-serif;
  --font-mono:    'Space Mono', ui-monospace, monospace;

  /* Weights */
  --fw-regular: 400; /* @kind font */
  --fw-medium:  500; /* @kind font */
  --fw-semibold:600; /* @kind font */
  --fw-bold:    700; /* @kind font */
  --fw-black:   900; /* @kind font */

  /* Type scale (fluid-friendly base 16px) */
  --fs-display-xl: 5.5rem;   /* 88px — hero type-as-art */
  --fs-display-l:  4rem;     /* 64px */
  --fs-display-m:  3rem;     /* 48px */
  --fs-h1:         2.25rem;  /* 36px */
  --fs-h2:         1.75rem;  /* 28px */
  --fs-h3:         1.375rem; /* 22px */
  --fs-body-l:     1.125rem; /* 18px */
  --fs-body:       1rem;     /* 16px */
  --fs-body-s:     0.875rem; /* 14px */
  --fs-label:      0.75rem;  /* 12px — mono kickers */

  /* Line heights */
  --lh-tight:   0.98; /* @kind font */
  --lh-snug:    1.15; /* @kind font */
  --lh-normal:  1.5; /* @kind font */
  --lh-relaxed: 1.65; /* @kind font */

  /* Letter spacing */
  --ls-display: -0.03em; /* @kind font */
  --ls-tight:   -0.01em; /* @kind font */
  --ls-normal:  0; /* @kind font */
  --ls-label:   0.14em; /* @kind font */
}
