/* ==========================================================================
   dikkebirdpics — Poppins site-breed (zoals Squarespace)
   Squarespace gebruikt Poppins overal:
     - bodytekst / navigatie:  gewicht 300 (light)
     - koppen:                 gewicht 500 (medium)
   Dit bestand dwingt Poppins af op de hele site. Aan te passen via de
   variabelen hieronder.
   ========================================================================== */

:root {
    --dbp-font:        "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --dbp-weight-body: 300;   /* bodytekst / nav / links */
    --dbp-weight-head: 500;   /* koppen h1–h6 */
}

/* Body + alles wat het font erft */
body,
button,
input,
select,
textarea,
.entry-content,
.site-container,
p, li, a, span, blockquote, figcaption, label, td, th {
    font-family: var(--dbp-font) !important;
}

body {
    font-weight: var(--dbp-weight-body);
}

/* Koppen iets zwaarder, zoals Squarespace (medium) */
h1, h2, h3, h4, h5, h6,
.entry-title,
.site-title {
    font-family: var(--dbp-font) !important;
    font-weight: var(--dbp-weight-head);
}

/* Navigatie licht, zoals Squarespace */
.main-navigation a,
.site-header a,
nav a {
    font-family: var(--dbp-font) !important;
    font-weight: var(--dbp-weight-body);
}
