/**
 * Neighborhood Disruptor — font declarations.
 *
 * Fonts are NOT bundled with this build. To self-host:
 *
 *   1. Download WOFF2 files for:
 *      - Cormorant Garamond (400 Regular, 400 Italic, 500 Medium)
 *      - Inter (400 Regular, 600 SemiBold, 700 Bold)
 *      from https://fonts.google.com/ (Regular license: OFL)
 *   2. Drop them into assets/fonts/ inside this child theme.
 *   3. Rebuild the child theme ZIP.
 *
 * Until fonts are installed, the CSS falls back through the font stack
 * defined in style.css :root — no visual breakage.
 */

/* -- Cormorant Garamond -------------------------------------------------- */
@font-face {
	font-family: "Cormorant Garamond";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: local("Cormorant Garamond Regular"),
	     url("../fonts/CormorantGaramond-Regular.woff2") format("woff2");
}
@font-face {
	font-family: "Cormorant Garamond";
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	src: local("Cormorant Garamond Italic"),
	     url("../fonts/CormorantGaramond-Italic.woff2") format("woff2");
}
@font-face {
	font-family: "Cormorant Garamond";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: local("Cormorant Garamond Medium"),
	     url("../fonts/CormorantGaramond-Medium.woff2") format("woff2");
}

/* -- Inter --------------------------------------------------------------- */
@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: local("Inter Regular"),
	     url("../fonts/Inter-Regular.woff2") format("woff2");
}
@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: local("Inter SemiBold"),
	     url("../fonts/Inter-SemiBold.woff2") format("woff2");
}
@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: local("Inter Bold"),
	     url("../fonts/Inter-Bold.woff2") format("woff2");
}
