/* ===========================================================================
   Techno Goober — self-hosted web fonts (conversion review, 2026-09-03)
   ---------------------------------------------------------------------------
   Replaces the Google Fonts stylesheet that every page used to load. Two
   variable files, Latin subset, served from this origin:

     BricolageGrotesque.woff2  opsz 12–96, wght 400–800  (width pinned at 100)
     HankenGrotesk.woff2       wght 300–800

   Why: the Google stylesheet was a render-blocking request to a third party,
   plus a second connection for the font files, on every page view. Same
   families, same axes the site asked Google for, one origin, cacheable.
   Both are built from the google/fonts repo sources with fontTools
   (varLib.instancer + pyftsubset). font-display:swap keeps text visible.
   Every page preloads Bricolage because it draws the H1 (the LCP element).
   =========================================================================== */
@font-face{
	font-family:"Bricolage Grotesque";
	font-style:normal;
	font-weight:400 800;
	font-display:swap;
	src:url(/assets/fonts/BricolageGrotesque.woff2) format("woff2");
}
@font-face{
	font-family:"Hanken Grotesk";
	font-style:normal;
	font-weight:300 800;
	font-display:swap;
	src:url(/assets/fonts/HankenGrotesk.woff2) format("woff2");
}
