/* Life Laboral — Typography tokens
 * True brand font is Codec Pro (commercial). Manrope stands in for it: geometric
 * semi-condensed, the closest free match to Codec Pro's engineered proportions.
 * One family for display and body — a single voice, and it holds up at 8.5pt on paper.
 */
:root {
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;
  /* Números, hashes e códigos de documento: alinhamento tabular é requisito, não estilo. */
  --font-mono:    'IBM Plex Mono', ui-monospace, Menlo, Consolas, monospace;
  /* The true brand face is Codec Pro (commercial) — see tokens/fonts.css.
     Once licensed, point --font-display/--font-body at it there. */

  /* Type scale (1.20 minor-third-ish, tuned) */
  --text-2xs:  0.6875rem;  /* 11px — legal, overline */
  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1rem;       /* 16px — body default */
  --text-md:   1.125rem;   /* 18px — lead */
  --text-lg:   1.375rem;   /* 22px */
  --text-xl:   1.75rem;    /* 28px */
  --text-2xl:  2.25rem;    /* 36px */
  --text-3xl:  3rem;       /* 48px */
  --text-4xl:  3.75rem;    /* 60px — hero */
  --text-5xl:  4.75rem;    /* 76px — display */

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

  /* Line heights */
  --leading-tight:  1.08;
  --leading-snug:   1.25;
  --leading-normal: 1.55;
  --leading-relaxed:1.7;

  /* Tracking */
  --tracking-tight:  -0.02em;
  --tracking-normal: 0;
  --tracking-wide:   0.04em;
  --tracking-caps:   0.14em;  /* the brand's spaced-uppercase signature */
}
