/* ObraFlow webfonts.
   SOURCE NOTE: the Orbit build self-hosts Inter (variable 100-900) and Lora (italic 400-700)
   via next/font. The binaries were NOT present in the saved page, so we load the same two
   families from Google Fonts. Drop real .woff2 files into assets/fonts/ and swap the
   @import below for @font-face rules if you need offline/self-hosted parity. */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Lora:ital,wght@1,400..700&display=swap");
:root{
  --font-sans:"Inter","Inter Fallback",-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  --font-serif-italic:"Lora","Lora Fallback","Times New Roman",serif;
  --font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono",monospace;
}
