/* ── NickMate typography tokens ──────────────────────────────────────────
   Three families:
   · display — Inter (600/700), for greetings / titles / section headings
   · text    — Inter (400/500), for body copy and controls
   · mono    — Inter Tight, the "mono" voice for labels, time, meta (not a true
               monospace — a tight grotesque that reads as machine/meta)
   Inter is a webfont (tokens/fonts.css), so display/text render identically on
   every platform. Jost is the brand WORDMARK face (logo only). */

:root {
  --nm-font-display: "Inter", -apple-system, BlinkMacSystemFont, system-ui, "Helvetica Neue", sans-serif;
  --nm-font-text:    "Inter", -apple-system, BlinkMacSystemFont, system-ui, "Helvetica Neue", sans-serif;
  --nm-font-mono:    "Inter Tight", "Inter", -apple-system, system-ui, sans-serif;
  --nm-font-wordmark: "Jost", "Inter", system-ui, sans-serif;

  /* type scale (px) — display sizes carry negative tracking, mono positive */
  --nm-text-greeting: 30px;   /* display 600, ls -0.6 */
  --nm-text-title:    24px;   /* display 600, ls -0.5 */
  --nm-text-heading:  19px;   /* display 600, ls -0.3 */
  --nm-text-strong:   16px;   /* text 600 */
  --nm-text-body:     15px;   /* text 400/500 — chat + controls */
  --nm-text-sm:       13.5px; /* text — dense controls */
  --nm-text-caption:  12.5px; /* text 400 */
  --nm-text-label:    10.5px; /* mono 700, uppercase, ls 0.8 */
}
