/* Bree — self-hosted. Files go in fonts/bree/
   Max available weight from Adobe Fonts: 800. Weight 900 does not exist.
   h1/h2 request 900 italic — mapped to 800 italic via font-weight range. */

@font-face {
	font-family: "bree";
	src: url("bree/bree-400.woff2") format("woff2"),
	     url("bree/bree-400.woff")  format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "bree";
	src: url("bree/bree-700.woff2") format("woff2"),
	     url("bree/bree-700.woff")  format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "bree";
	src: url("bree/bree-700-italic.woff2") format("woff2"),
	     url("bree/bree-700-italic.woff")  format("woff");
	font-weight: 700;
	font-style: italic;
	font-display: swap;
}

/* weight 900 does not exist in this family — 800 serves both 800 and 900 */
@font-face {
	font-family: "bree";
	src: url("bree/bree-800-italic.woff2") format("woff2"),
	     url("bree/bree-800-italic.woff")  format("woff");
	font-weight: 800 900;
	font-style: italic;
	font-display: swap;
}