/* =========================================================
   core.css  —  Shared base for every public page
   Loaded by base.html BEFORE each page's own stylesheet,
   so any page-specific rule still wins via the cascade.
   ========================================================= */

/* Global reset (previously copy-pasted into every page CSS file) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* Sensible default for links; pages restyle as needed */
a {
    text-decoration: none;
    color: inherit;
}
