/*
 * Self-hosted typefaces.
 *
 * Drop the .woff2 files into assets/fonts/ and these rules pick them up. No
 * request leaves the visitor's browser, which keeps the site clean under GDPR
 * without a cookie banner for fonts.
 *
 * Files needed:
 *   RobotoCondensed-Regular.woff2, RobotoCondensed-Bold.woff2,
 *   RobotoCondensed-Italic.woff2, Inter-Regular.woff2, Inter-Bold.woff2,
 *   Inter-ExtraBold.woff2, Poppins-Regular.woff2, Poppins-Medium.woff2
 *
 * Get them from https://gwfh.mranftl.com/fonts (Roboto Condensed, Inter,
 * Poppins — Latin + Latin Extended covers Finnish and Swedish).
 */

@font-face {
	font-family: "Roboto Condensed";
	src: url("../fonts/RobotoCondensed-Regular.woff2") format("woff2");
	font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
	font-family: "Roboto Condensed";
	src: url("../fonts/RobotoCondensed-Italic.woff2") format("woff2");
	font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
	font-family: "Roboto Condensed";
	src: url("../fonts/RobotoCondensed-Bold.woff2") format("woff2");
	font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-Regular.woff2") format("woff2");
	font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-Bold.woff2") format("woff2");
	font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-ExtraBold.woff2") format("woff2");
	font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
	font-family: "Poppins";
	src: url("../fonts/Poppins-Regular.woff2") format("woff2");
	font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
	font-family: "Poppins";
	src: url("../fonts/Poppins-Medium.woff2") format("woff2");
	font-weight: 500; font-style: normal; font-display: swap;
}
