/**
 * font-icon override — subset WOFF2 from child theme.
 *
 * Parent theme's class-styles.php generates an @font-face with WOFF first,
 * WOFF2 second, pointing at /themes/xts-hitek/fonts/. We override here with
 * a child-theme-hosted subset WOFF2 (13KB vs 14KB parent; glyphs reduced
 * from 104 to 100 used codepoints) and drop the WOFF fallback — WOFF2 is
 * supported by >98% of browsers since 2020 (Can I Use).
 *
 * Loaded after xts-child-style, so this @font-face wins the cascade for
 * family "font-icon" and the browser fetches only the subset WOFF2.
 */
@font-face {
	font-family: "font-icon";
	font-weight: normal;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/font-icon.woff2") format("woff2");
}
