/* ==========================================================================
   Amplified — Typography tokens
   Single family: Quicksand. Rounded, friendly-but-bold. Headlines are heavy
   and punchy; body is regular/medium. Line-height default 1.4.
   ========================================================================== */

:root {
  --font-family-base: 'Quicksand', system-ui, -apple-system, sans-serif;
  --font-family-heading: 'Quicksand', system-ui, -apple-system, sans-serif;

  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Type scale */
  --font-size-xs: 0.75rem;      /* 12px — captions, legal */
  --font-size-sm: 0.875rem;     /* 14px — secondary text */
  --font-size-base: 1rem;       /* 16px — body copy */
  --font-size-md: 1.25rem;      /* 20px — lead paragraphs */
  --font-size-lg: 1.5625rem;    /* 25px — h4 */
  --font-size-xl: 1.875rem;     /* 30px — h3 */
  --font-size-2xl: 2.375rem;    /* 38px — h2 */
  --font-size-3xl: 4.25rem;     /* 68px — h1 */
  --font-size-display: 6.25rem; /* 100px — hero display */

  --line-height-tight: 1.2;
  --line-height-base: 1.4;      /* brand default */
  --line-height-relaxed: 1.6;

  --letter-spacing-base: 0;
  --letter-spacing-wide: 0.02em; /* buttons, small-caps labels */
}
