/* Canndata — Typography tokens
 * One family: Source Sans 3. Tabular figures mandatory.
 * Web type scale (from Website Design Elements, Web Kit v1).
 * Slide scale (1920×1080) lives at the bottom as --slide-* tokens.
 */
:root {
  /* Family */
  --font-sans: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-family: var(--font-sans);

  /* Weights in use */
  --weight-regular: 400;
  --weight-semibold: 600;
  --weight-bold: 700;   /* genuine emphasis only */

  /* ---- Web type scale ----
   * Each token: size / line-height / tracking baked into component CSS.
   * Desktop / mobile sizes noted in comments.
   */
  --type-hero-size: 56px;        /* H1 hero · mobile 48px · 600 · −0.02em · 1.05 */
  --type-hero-line: 1.05;
  --type-hero-track: -0.02em;

  --type-h2-size: 36px;          /* mobile 28px · 600 · −0.01em · 1.15 */
  --type-h2-line: 1.15;
  --type-h2-track: -0.01em;

  --type-h3-size: 24px;          /* mobile 20px · 600 · 1.25 */
  --type-h3-line: 1.25;

  --type-lead-size: 20px;        /* 400 · 1.55 */
  --type-lead-line: 1.55;

  --type-body-size: 17px;        /* 400 · 1.6 — default reading size */
  --type-body-line: 1.6;

  --type-caption-size: 14px;     /* italic 400 · gray dark */
  --type-caption-line: 1.45;

  --type-label-size: 13px;       /* 600 · 0.07em · UPPERCASE */
  --type-label-track: 0.07em;

  --type-button-size: 16px;      /* 600 */

  /* ---- Slide type scale (1920×1080 presentation master) ---- */
  --slide-title-size: 62px;      /* SemiBold navy */
  --slide-context-size: 30px;    /* context line under title */
  --slide-min-text: 24px;        /* minimum text on a slide */
  --slide-kicker-size: 22px;     /* section labels / kickers */
}
