/* Preparo Jurídico — Typography
   One family, two roles: Display = Montserrat 800 (tight, geometric,
   the homepage headline voice). Body/UI = Montserrat 400–600. */

:root {
  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, monospace;

  /* Type scale (px) */
  --text-display: 68px;   /* hero headline */
  --text-h1: 52px;
  --text-h2: 40px;
  --text-h3: 28px;
  --text-h4: 20px;
  --text-lg: 18px;        /* body large / hero subhead */
  --text-base: 16px;      /* body */
  --text-sm: 14px;        /* body small */
  --text-xs: 12px;        /* caption */
  --text-2xs: 11px;       /* eyebrow / kicker */

  /* Weights */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;
  --weight-black: 900;

  /* Line heights */
  --leading-tight: 1.05;
  --leading-snug: 1.15;
  --leading-heading: 1.25;
  --leading-body: 1.65;

  /* Letter spacing */
  --tracking-display: -0.025em;  /* headlines: pull tight */
  --tracking-tight: -0.01em;
  --tracking-normal: 0;
  --tracking-wide: 0.04em;
  --tracking-caps: 0.18em;       /* uppercase eyebrows and kickers */
}
