/**
 * Self-hosted webfonts.
 *
 * Replaces the third-party fonts.gstatic.com requests the Astra build made
 * (20 @font-face rules across every language subset). Only the latin subset is
 * shipped, which is all the site's content needs: 67 KB total.
 *
 * Open Sans is a variable font, so a single file covers every weight the
 * design uses. This file is only enqueued when the WOFF2 files are present
 * (see dastek_has_local_fonts()), so a partial deploy degrades to system
 * fonts rather than requesting assets that 404.
 */

@font-face {
	font-family: "Open Sans";
	font-style: normal;
	font-weight: 300 800;
	font-stretch: 75% 125%;
	font-display: swap;
	src: url("../fonts/open-sans-variable.woff2") format("woff2-variations");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
		U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
		U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/montserrat-700.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
		U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
		U+FEFF, U+FFFD;
}
