/* Local font fallback — ensures IBM Plex Sans family is defined
   even when Google Fonts CDN is unavailable (offline/slow network).
   Loaded before Google Fonts so system fonts render immediately;
   Google Fonts will override once loaded (font-display: swap). */
:root {
  --font-sans: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: var(--font-sans);
  /* Tingoole Brand Identity — primary brand typeface for logo wordmark */
  --font-brand: "Sora", var(--font-sans);
}
