/* LandmarkLouie overrides — load AFTER design-tokens.css and platform.css.
 * Purpose: anchor LL-specific choices that differ from the ported LA
 * design system. Today the only divergence is the font family; LL
 * historically ships Plus Jakarta Sans, whereas LA's tokens default
 * to Inter. Everything else should continue to flow from the tokens.
 */

:root {
  --font-sans: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
}

body,
* {
  font-family: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif !important;
}

/* Code/mono shouldn't pick up Plus Jakarta Sans — preserve mono stack */
pre, code, kbd, samp, [class*="code-block"] {
  font-family: var(--font-mono, 'Fira Code', 'SF Mono', 'Courier New', monospace) !important;
}
