I would like to change the body font in our blog to be lighter and more reader friendly. It is currently always bold/heavy.
I have tried changing settings in Customizer>Typography as well as adding different fonts. While the fonts change - the bold remains.
Website blog: https://www.allos.com.au/blog/
Based on other posts, I’ve added the following CSS. Letter spacing helped - however the second section of code had no effect.
body {
letter-spacing: 0.05em !important;
}
.x-text {
letter-spacing: 0.05em !important;
}
body .blog { font-family: marcellus, 300; }
.blog p { color: #504646; font-size: 15px; font-weight: 300; }
.blog h1 { color: #073B4C; }
.blog a { color: #118AB2; }
.blog a:visited { color: #FC6960; }
.blog span { color: #FFFFFF; }


