/* System font first = instant text; Poppins loads async via app.js */
:root {
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  font-family: var(--font);
}

html.fonts-ready body {
  font-family: "Poppins", var(--font);
}
