/* Self-hosted webfonts for the calculator v2 page — replaces the render-blocking
   Google Fonts stylesheet (fonts.googleapis.com/css2?family=Inter…) with a same-origin
   file so there is no external CSS+font round-trip on the critical path.

   Inter is a variable font: this is the exact woff2 Google was serving
   (…/v20/UcC73Fwr…woff2), now local. font-weight:100 900 covers every weight the UI
   uses (400–900). font-display:swap keeps text visible during load (never blocks FCP).

   Fira Sans is self-hosted separately in ../css/style-09-04.css (that file is enqueued
   site-wide, so its @font-face lives with it). */
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url('fonts/inter.woff2') format('woff2');
}
