/*
 * TEDA self-hosted fonts (SPEC §3.2, D9).
 * WOFF2 only, Latin subset, font-display: swap, max 3 files, no Google Fonts
 * request from any page. Archivo and Source Sans 3 are variable fonts (one file
 * covers every weight); Anton is a single-weight display face.
 */

@font-face {
	font-family: 'Anton';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/anton-latin-400.woff2') format('woff2');
}

@font-face {
	font-family: 'Archivo';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url('../fonts/archivo-latin-var.woff2') format('woff2');
}

@font-face {
	font-family: 'Source Sans 3';
	font-style: normal;
	font-weight: 200 900;
	font-display: swap;
	src: url('../fonts/source-sans-3-latin-var.woff2') format('woff2');
}
