/*
 * Typeface loading.
 *
 * Ships working out of the box by importing Inter from Google Fonts, which is
 * what the prototype did. For a Greek client this is worth changing: the
 * import leaks visitor IPs to Google and costs an extra DNS + TLS round trip
 * before any text paints.
 *
 * To self-host, download the Inter woff2 files (google-webfonts-helper is the
 * quickest route — pick latin + greek subsets, weights 300-900), drop them in
 * this folder, then delete the @import below and uncomment the @font-face
 * block. Nothing else in the theme changes.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/*
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 300 900;
	font-display: swap;
	src: url('inter-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}

@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 300 900;
	font-display: swap;
	src: url('inter-greek.woff2') format('woff2');
	unicode-range: U+0370-03FF;
}
*/
