/* Fonts setup: Satoshi (primary), Aber Mono, and Inter via Google Fonts */
/* Inter via Google Fonts (loaded in index head via preconnect and here via import as fallback) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

/* Satoshi font */
@font-face {
	font-family: "Satoshi";
	src: url("../assets/fonts/WEB/fonts/Satoshi-Regular.woff2") format("woff2"),
		 url("../assets/fonts/WEB/fonts/Satoshi-Regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Satoshi";
	src: url("../assets/fonts/WEB/fonts/Satoshi-Medium.woff2") format("woff2"),
		 url("../assets/fonts/WEB/fonts/Satoshi-Medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Satoshi";
	src: url("../assets/fonts/WEB/fonts/Satoshi-Bold.woff2") format("woff2"),
		 url("../assets/fonts/WEB/fonts/Satoshi-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* Placeholder @font-face for Aber Mono Bold.
   Replace src URLs with your actual font files in /fonts. */
@font-face {
	font-family: "Aber Mono";
	src:
		url("../fonts/AberMono-Bold.woff2") format("woff2"),
		url("../fonts/AberMono-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* Neue Haas Grotesk */
@font-face {
	font-family: "Neue Haas Grotesk";
	src: url("../fonts/neue-haas-grotesk/neuehaasgrottext-55roman-trial.otf") format("opentype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Neue Haas Grotesk";
	src: url("../fonts/neue-haas-grotesk/neuehaasgrottext-65medium-trial.otf") format("opentype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Neue Haas Grotesk";
	src: url("../fonts/neue-haas-grotesk/neuehaasgrottext-75bold-trial.otf") format("opentype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* Font stacks */
:root {
	--font-mono: "Aber Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	--font-sans: "Satoshi", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-haas: "Neue Haas Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}




