/* EON — typography tokens.
   Cinzel: wordmark + display, wide CAPS tracking (0.35-0.55em).
   Prata: editorial / manifesto serif.
   Inter: body / UI.
   Courier Prime: technical labels (gram, mm, karat, coordinates, version) - CAPS, tracked. */
:root {
  --font-display: 'Cinzel', serif;
  --font-editorial: 'Prata', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Courier Prime', 'Courier New', monospace;
  --font-decorative: 'Cinzel Decorative', serif;
  --font-script: 'Great Vibes', cursive;

  /* Display / wordmark scale */
  --fs-display-xl: 64px;
  --fs-display-lg: 44px;
  --fs-display-md: 30px;
  --fs-display-sm: 20px;

  /* Editorial */
  --fs-editorial-lg: 34px;
  --fs-editorial-md: 24px;
  --fs-editorial-sm: 19px;

  /* Body */
  --fs-body-lg: 17px;
  --fs-body: 15px;
  --fs-body-sm: 13px;

  /* Technical label */
  --fs-label: 11px;
  --fs-label-sm: 10px;

  /* Tracking */
  --track-wordmark: 0.55em; /* @kind other */
  --track-display: 0.35em; /* @kind other */
  --track-label: 0.26em; /* @kind other */
  --track-body: 0.005em; /* @kind other */

  /* Line height */
  --lh-tight: 1.15; /* @kind other */
  --lh-editorial: 1.6; /* @kind other */
  --lh-body: 1.65; /* @kind other */

  /* Weights */
  --fw-body-light: 300; /* @kind other */
  --fw-body: 400; /* @kind other */
  --fw-body-medium: 500; /* @kind other */
}
