/* Self-hosted fonts for CZS eScoring.
   Loaded from Site.master before Common.css and Material.css so both
   stylesheets can reference Roboto and Material Symbols without any
   external CDN round-trip. Offline gymnasium venues get reliable rendering. */

/* Roboto — single variable font covering 400/500/700 in the latin subset.
   Google Fonts v51 serves one woff2 for all weights; the three @font-face
   declarations below just label the same file with different weight values. */
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('fonts/roboto-latin-variable.woff2') format('woff2');
}
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('fonts/roboto-latin-variable.woff2') format('woff2');
}
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('fonts/roboto-latin-variable.woff2') format('woff2');
}

/* Material Symbols Outlined — Google's canonical icon font.
   Rendered via ligature text like "arrow_back" → arrow glyph. */
@font-face {
	font-family: 'Material Symbols Outlined';
	font-style: normal;
	font-weight: 100 700;
	font-display: swap;
	src: url('fonts/MaterialSymbolsOutlined.woff2') format('woff2');
}

.material-symbols-outlined {
	font-family: 'Material Symbols Outlined';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
}
