@mixin font-face($family, $path-prefix, $weights: 400, $styles: normal) {
	@each $style in $styles {
		@each $weight in $weights {
			@font-face {
				font-weight: $weight;
				font-style: $style;
				font-family: $family;
				font-display: swap;
				src: url("/fonts/#{$path-prefix}-#{$style}-#{$weight}.woff2")
					format("woff2");
			}
		}
	}
}
