/*
 * Self-hosted Plus Jakarta Sans (web only).
 *
 * Replaces expo-font's runtime `@font-face` injection, which used
 * `<style>` + appendChild(textNode) — content that CSP re-evaluates and
 * blocks under a strict `style-src-elem` (no 'unsafe-inline'). Declaring the
 * faces in this external stylesheet keeps them under `style-src-elem 'self'`
 * and the WOFF2 files under `font-src 'self'`. See DK-2898 /
 * docs/amplify-hosting-security.md.
 *
 * Family names intentionally match the @expo-google-fonts/plus-jakarta-sans
 * identifiers (PlusJakartaSans_<weight>) the app already references in RN
 * `fontFamily` styles, so nothing downstream has to change.
 */
@font-face {
	font-family: "PlusJakartaSans_400Regular";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("/fonts/PlusJakartaSans-Regular.woff2") format("woff2");
}
@font-face {
	font-family: "PlusJakartaSans_500Medium";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("/fonts/PlusJakartaSans-Medium.woff2") format("woff2");
}
@font-face {
	font-family: "PlusJakartaSans_600SemiBold";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("/fonts/PlusJakartaSans-SemiBold.woff2") format("woff2");
}
@font-face {
	font-family: "PlusJakartaSans_700Bold";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("/fonts/PlusJakartaSans-Bold.woff2") format("woff2");
}
