/* Mauvely webfonts.
   No font binaries were supplied with the brand board — all three families are
   Google Fonts. Swap for local @font-face rules if self-hosted binaries become
   available.

   The design bundle loaded them with a CSS `@import`, which makes the browser
   parse this stylesheet before it can even discover the font request — a
   render-blocking waterfall. The preconnect + stylesheet <link> pair now lives
   in web/index.html instead, so the fetch starts during HTML parsing. */

:root{
  --font-display:'Baloo 2','Trebuchet MS',sans-serif;
  --font-body:'Inter','Helvetica Neue',Arial,sans-serif;
  --font-mono:'JetBrains Mono',ui-monospace,'SF Mono',Menlo,monospace;
}
