/*
 * WeAr brand typography
 * - Self-hosted free Roboto Slab (SIL Open Font License) — replaces the licensed PFCentroSlabPro-Bold
 * - Applies ONE consistent brand font across the whole news/article (fixes the mixed-font look:
 *   real headings + <strong> pseudo-headings + body were rendering in different fonts)
 * - Larger, more readable article text
 * Loaded LAST so it wins the cascade.
 */

/* --- Self-hosted Roboto Slab (served from your own server, GDPR-clean) --- */
@font-face {
	font-family: 'Roboto Slab';
	src: url('../fonts/roboto-slab-400.woff2') format('woff2');
	font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
	font-family: 'Roboto Slab';
	src: url('../fonts/roboto-slab-700.woff2') format('woff2');
	font-weight: 700; font-style: normal; font-display: swap;
}

/* Re-point the old licensed brand-font name to Roboto Slab, so every existing use of it
   (logo, menu, headings) switches automatically without editing the rest of the CSS. */
@font-face {
	font-family: 'PFCentroSlabPro-Bold';
	src: url('../fonts/roboto-slab-700.woff2') format('woff2');
	font-weight: normal; font-style: normal; font-display: swap;
}

/* --- One consistent, on-brand font across the entire news article --- */
.single-content .entry-title,
.single-content .entry-content,
.single-content .entry-content p,
.single-content .entry-content li,
.single-content .entry-content h1,
.single-content .entry-content h2,
.single-content .entry-content h3,
.single-content .entry-content h4,
.single-content .entry-content strong,
.single-content .entry-content b {
	font-family: 'Roboto Slab', Georgia, serif;
}

/* Bigger, more readable body text */
.single-content .entry-content,
.single-content .entry-content p,
.single-content .entry-content li {
	font-size: 19px;
	line-height: 1.7;
	font-weight: 400;
}

/* Clear heading hierarchy */
.single-content .entry-title { font-size: 32px; line-height: 1.18; }
.single-content .entry-content h2 { font-size: 26px; line-height: 1.25; margin-top: 1.2em; }
.single-content .entry-content h3 { font-size: 21px; line-height: 1.3; margin-top: 1em; }
.single-content .entry-content h4 { font-size: 18px; }
.single-content .entry-content strong,
.single-content .entry-content b { font-weight: 700; }
