/*
 * Self hosted fonts. No Google CDN.
 *
 * Drop these two files into /assets/fonts/ and the headings and body switch to
 * the real typefaces automatically. Until then the theme uses a close system
 * fallback so nothing ever looks broken.
 *
 * DM Sans:  https://fonts.gstatic.com/s/dmsans/  (download the woff2, rename)
 * Inter:    https://fonts.gstatic.com/s/inter/   (download the woff2, rename)
 *
 * Expected filenames:
 *   assets/fonts/dm-sans-700.woff2
 *   assets/fonts/dm-sans-500.woff2
 *   assets/fonts/inter-400.woff2
 *   assets/fonts/inter-500.woff2
 *   assets/fonts/inter-600.woff2
 */

@font-face {
	font-family: 'DM Sans';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/dm-sans-500.woff2') format('woff2');
}
@font-face {
	font-family: 'DM Sans';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/dm-sans-700.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/inter-400.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/inter-500.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../fonts/inter-600.woff2') format('woff2');
}
