/* Speedcast — Typography tokens */

:root {
  /* ---- Families ---- */
  --font-display: 'Lato', 'Helvetica Neue', Arial, sans-serif;   /* headings, titles */
  --font-body:    'Lato', 'Calibri', 'Carlito', 'Helvetica Neue', Arial, sans-serif; /* UI + body */
  --font-data:    'Calibri', 'Carlito', 'Lato', Arial, sans-serif; /* tables / data */
  --font-mono:    ui-monospace, 'SF Mono', Menlo, Consolas, monospace; /* metrics, codes */

  /* ---- Weights ---- */
  --fw-light:   300; /* @kind other */
  --fw-regular: 400; /* @kind other */
  --fw-bold:    700; /* @kind other */
  --fw-black:   900; /* @kind other */

  /* ---- Type scale (rem, 16px base) ---- */
  --text-display: 3.5rem;   /* 56px — hero */
  --text-h1:      2.5rem;   /* 40px */
  --text-h2:      2rem;     /* 32px */
  --text-h3:      1.5rem;   /* 24px */
  --text-h4:      1.25rem;  /* 20px */
  --text-lg:      1.125rem; /* 18px */
  --text-base:    1rem;     /* 16px */
  --text-sm:      0.875rem; /* 14px */
  --text-xs:      0.75rem;  /* 12px */
  --text-2xs:     0.6875rem;/* 11px — labels, table data */

  /* ---- Line heights ---- */
  --leading-tight:   1.1;
  --leading-snug:    1.25;
  --leading-normal:  1.5;
  --leading-relaxed: 1.65;

  /* ---- Letter spacing ---- */
  --tracking-tight:  -0.02em;
  --tracking-normal: 0;
  --tracking-wide:   0.04em;
  --tracking-label:  0.12em;  /* uppercase eyebrows / labels */
}
