/* Talking Climate — self-hosted brand fonts.
   Replaces the Google Fonts CDN (was enqueued as 'tc-ubuntu'). Latin woff2
   subsets are vendored in assets/fonts/ (same source Google served).

   Ubuntu is the brand typeface, used globally for everything (300/400/500/700;
   the theme's 600 and 900 usages fall back to 700 — Ubuntu has no real 600/900,
   matching the prior CDN behaviour). Nunito is loaded but NOT the global default:
   it's available for "preferenced areas" via the .tcc-body/.tcc-lead classes and
   the --font-body token in brand.css. */

@font-face {
	font-family: 'Ubuntu'; font-style: normal; font-weight: 300; font-display: swap;
	src: url('../fonts/ubuntu-300.woff2') format('woff2');
}
@font-face {
	font-family: 'Ubuntu'; font-style: normal; font-weight: 400; font-display: swap;
	src: url('../fonts/ubuntu-400.woff2') format('woff2');
}
@font-face {
	font-family: 'Ubuntu'; font-style: normal; font-weight: 500; font-display: swap;
	src: url('../fonts/ubuntu-500.woff2') format('woff2');
}
@font-face {
	font-family: 'Ubuntu'; font-style: normal; font-weight: 700; font-display: swap;
	src: url('../fonts/ubuntu-700.woff2') format('woff2');
}
/* Nunito ships as a variable font: one file serves weights 400–800. */
@font-face {
	font-family: 'Nunito'; font-style: normal; font-weight: 400 800; font-display: swap;
	src: url('../fonts/nunito-400.woff2') format('woff2');
}
