/* ===========================================================================
   MightyMax — Typography
   Display/headings: Plus Jakarta Sans (friendly geometric, bold weights)
   Body/UI: Manrope (clean, highly legible, light-to-medium weights)
   Instant hierarchy: bold headlines, light body. Two families, one voice.
   =========================================================================== */
:root {
  --font-display: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, 'SF Mono', Menlo, monospace;

  /* Type scale (px) — 1.25 major-third-ish, tuned for marketing + UI */
  --text-xs:   12px;
  --text-sm:   14px;
  --text-base: 16px;
  --text-lg:   18px;
  --text-xl:   20px;
  --text-2xl:  24px;
  --text-3xl:  30px;
  --text-4xl:  38px;
  --text-5xl:  48px;
  --text-6xl:  60px;
  --text-7xl:  76px;

  /* Line heights */
  --leading-none:    1;
  --leading-tight:   1.12;
  --leading-snug:    1.28;
  --leading-normal:  1.5;
  --leading-relaxed: 1.7;

  /* Weights */
  --weight-light:    300;
  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;
  --weight-extra:    800;

  /* Letter spacing */
  --tracking-tight:  -0.02em;
  --tracking-snug:   -0.01em;
  --tracking-normal: 0em;
  --tracking-wide:   0.04em;
  --tracking-caps:   0.08em;   /* eyebrows / all-caps labels */
}

/* Optional utility classes consumers may lean on */
.mm-display { font-family: var(--font-display); font-weight: var(--weight-extra); letter-spacing: var(--tracking-tight); line-height: var(--leading-tight); color: var(--text-strong); }
.mm-eyebrow { font-family: var(--font-body); font-weight: var(--weight-bold); font-size: var(--text-sm); letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--accent); }
.mm-body    { font-family: var(--font-body); font-weight: var(--weight-regular); line-height: var(--leading-relaxed); color: var(--text-body); }
.mm-mono    { font-family: var(--font-mono); }
