/*
 * PT SANS Font styling
 * –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Overridden CSS variables using the “PT Sans” font family */

/* PT Sans webfonts loaded locally via @font-face in config.fonts.scss */

:root {  /* redefine variables at site-wide level */

    /* pale-blue page background color */
    --page-background-color: hsl(215, 60%, 95%); /* hue, saturation, lightness */

    /* Wider column width */
    --text-col-width: 46rem;

    /* "PT Serif" serif font */
    --entry-title-font-family: "PT Sans";
    --entry-title-font-size: 1.75rem; /* 28px */

    --text-font-family: "PT Sans";
    --text-font-size: 1.25rem;  /* 20 px */
    --text-line-height: 1.6;

    /* Centred main heading */
    /* --entry-title-text-align: center; */

}