/* ===========================================================================
   Pertineo — Fonts
   The iOS app uses the system font (San Francisco / SF Pro) exclusively, via
   SwiftUI's .font(.title/.body/...) Dynamic Type. SF Pro is not redistributable
   as a webfont, so on the web we mirror it with the native system-UI stack —
   identical metrics on Apple devices, graceful fallback elsewhere.
   No @font-face is shipped: this is intentional (system font).
   ========================================================================== */
:root {
  --font-system: -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI",
                 Roboto, Helvetica, Arial, sans-serif;
  /* Tabular/mono for dev panels, build numbers, coordinates */
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
