/* MagneDS — Typography
   One typeface: Nohemi. Hierarchy comes purely from weight and size.
   Bold (700) for headings, often UPPERCASE. SemiBold (600) for body.
   Black (900) for the single big display punch. No second font, no serifs. */

:root {
  --font-sans: "Nohemi", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-brand: var(--font-sans);
  --font-script: "Playball", "Brush Script MT", cursive;  /* accent word / signature flourish only */

  /* ---- Weights ---- */
  --weight-light:   300;  /* Nohemi Light — large quotes / airy subtitles */
  --weight-body:    500;  /* Nohemi Medium — body text */
  --weight-medium:  500;  /* Nohemi Medium */
  --weight-semibold:600;  /* Nohemi SemiBold — emphasis / labels */
  --weight-heading: 700;  /* Nohemi Bold */
  --weight-display: 900;  /* Nohemi Black */

  /* ---- Type scale (fluid-friendly fixed px) ---- */
  --text-display: 88px;  /* hero punch — one per graphic */
  --text-h1:      56px;
  --text-h2:      40px;
  --text-h3:      28px;
  --text-title:   22px;
  --text-body-lg: 19px;
  --text-base:    16px;
  --text-sm:      14px;
  --text-xs:      12px;

  /* ---- Line heights ---- */
  --leading-tight: 1.02;  /* display & big headings */
  --leading-snug:  1.18;  /* sub-heads */
  --leading-body:  1.55;  /* paragraphs */

  /* ---- Tracking ---- */
  --tracking-display: -0.02em;  /* tight on the big punch */
  --tracking-heading: -0.01em;
  --tracking-caps:    0.16em;   /* uppercase labels / eyebrows */
  --tracking-body:    0;
}
