/* Self-hosted instead of Google Fonts CDN - fonts.googleapis.com is blocked
   by default in several common privacy setups (Brave Shields, uBlock Origin
   third-party-font blocking, Firefox strict Enhanced Tracking Protection),
   which silently drops the font with no console error and falls back to a
   generic sans - easy to mistake for "nothing changed" after a hard reload
   because the fallback both before and after looks like a plain sans-serif.
   Self-hosting removes that failure mode for every visitor, not just
   whoever's currently debugging it. Latin subset only (no Vietnamese/
   extended Latin) - this site has no content that needs the other subsets
   Google's CSS2 API ships by default. */

@font-face {
	font-family: "Barlow Condensed";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("barlow-condensed-600.woff2") format("woff2");
}

@font-face {
	font-family: "Barlow Condensed";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("barlow-condensed-700.woff2") format("woff2");
}
