/**
 * PLACEHOLDER font stylesheet — self-hosted-fonts pattern preserved
 * (no external requests to Google Fonts or any other domain, matching
 * breakwater-diabetes-ai's approach), but the actual @font-face files
 * (woff2 binaries) from the live Diabetes repo's public/fonts/ were never
 * staged into this session (the device bridge was disconnected when this
 * scaffold was built — see build notes / open items). Until those real
 * font files are copied over, this falls back to a system-font stack that
 * still respects the app's IBM Plex Mono usage in index.css (monospace
 * fallback) without making any network requests.
 *
 * TODO: replace with the real @font-face declarations + woff2 files from
 * breakwater-diabetes-ai's public/fonts/ once the device bridge is
 * reconnected (see docs/aws-infrastructure.md open items).
 */
:root {
  --bw-font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --bw-font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

body {
  font-family: var(--bw-font-sans);
}
