/* ==========================================================================
   Self-hosted web fonts
   - Body text: Geist            (weights used: 300 Light, 400, 600 Semibold)
   - Headings:  Stack Sans Headline (weights used: 300 Light, 600 Semibold, 700 Bold)
   Drop the .woff2 files into resources/dist/fonts/ (see that folder's README).
   ========================================================================== */

/* Geist — body -------------------------------------------------------------*/
@font-face {
	font-family: "Geist";
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url("../fonts/Geist-Light.woff2") format("woff2");
}
@font-face {
	font-family: "Geist";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/Geist-Regular.woff2") format("woff2");
}
@font-face {
	font-family: "Geist";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/Geist-SemiBold.woff2") format("woff2");
}

/* Stack Sans Headline — headings ------------------------------------------ */
@font-face {
	font-family: "Stack Sans Headline";
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url("../fonts/StackSansHeadline-Light.woff2") format("woff2");
}
@font-face {
	font-family: "Stack Sans Headline";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/StackSansHeadline-SemiBold.woff2") format("woff2");
}
@font-face {
	font-family: "Stack Sans Headline";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/StackSansHeadline-Bold.woff2") format("woff2");
}
