/* Local font fallback for build-static.pl.
 * Original site used Google Fonts "Inter" (not present in the WP backup or
 * the Wayback mirror). Aliased to a close system stack with local() so the
 * page makes no external font request. REVIEW: typography differs slightly. */
@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: local("Inter"), local("Inter var"), local("Segoe UI"), local("Roboto"),
		 local("Helvetica Neue"), local("Arial"), local("system-ui");
}
@font-face {
	font-family: "Inter";
	font-style: italic;
	font-weight: 100 900;
	font-display: swap;
	src: local("Inter Italic"), local("Segoe UI Italic"), local("Roboto Italic"),
		 local("Helvetica Neue Italic"), local("Arial Italic");
}
