/* Studio 77 — Typography tokens
   Bodoni Moda for display/headlines (high-contrast serif, 400–600).
   Jost for body, labels & letter-spaced UI caps (geometric sans, 300–600). */

:root {
  /* ---- Families ---- */
  --font-display: 'Bodoni Moda', 'Times New Roman', serif;
  --font-body:    'Jost', system-ui, -apple-system, sans-serif;

  /* ---- Weights ---- */
  --weight-light:    300;
  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;

  /* ---- Type scale (size / line-height) ----
     Values from the brand guide type scale. */
  --text-display:   72px;  --lh-display:   1.05; /* @kind font */ /* Display · 72/400 */
  --text-h1:        52px;  --lh-h1:        1.1;  /* @kind font */ /* H1 · 52/500 */
  --text-h2:        36px;  --lh-h2:        1.15; /* @kind font */ /* H2 · 36/500 */
  --text-h3:        24px;  --lh-h3:        1.25; /* @kind font */ /* H3 · 24/500 */
  --text-body-lg:   19px;  --lh-body-lg:   1.6;  /* @kind font */
  --text-body-base: 17px;  --lh-body:      1.65; /* @kind font */ /* Body · 17/400 */
  --text-body-sm:   15px;  --lh-body-sm:   1.55; /* @kind font */
  --text-caption:   13px;  --lh-caption:   1.45; /* @kind font */
  --text-overline:  12px;  --lh-overline:  1.3;  /* @kind font */ /* Overline · 12/500 */

  /* ---- Letter-spacing ---- */
  --tracking-tight:   -0.01em;
  --tracking-normal:  0;
  --tracking-wide:    0.08em;
  --tracking-overline: 0.22em;  /* the letter-spaced caps motif */
}
