/* The Resilience Lab — webfonts.

   DISPLAY: Montserrat. Not a style choice so much as a physical one — the front-door
   decal, the "RESILIENT HEALTH STARTS HERE" wall vinyl, and the logo lockup are all
   cut in it. Changing the display face would put the website out of step with the
   clinic itself.

   BODY / UI: Instrument Sans. Slightly narrower and more contemporary than Montserrat
   at paragraph size, with a taller x-height that reads better at 15-16px. This is the
   "updated" half of the pairing and costs nothing to change.

   Both are open-licensed and served from Google Fonts because no binaries were
   supplied. To self-host: download from fonts.google.com, drop the .woff2 files into
   assets/fonts/, and replace the @import below with @font-face rules. */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
:root{
--font-display:"Montserrat",system-ui,-apple-system,"Segoe UI",sans-serif;
--font-body:"Instrument Sans","Montserrat",system-ui,-apple-system,"Segoe UI",sans-serif;
--font-ui:"Instrument Sans","Montserrat",system-ui,-apple-system,"Segoe UI",sans-serif;
}
