﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc	focuses
49318	Twenty-Twenty: content font CSS selector is too important	alexandreb3	ianbelanger	"The CSS selector used to define the content font-family is too important.

https://themes.trac.wordpress.org/browser/twentytwenty/1.1/style.css?rev=122235#L3524

{{{
.entry-content p,
.entry-content ol,
.entry-content ul,
.entry-content dl,
.entry-content dt {
        font-family: NonBreakingSpaceOverride, ""Hoefler Text"", Garamond, ""Times New Roman"", serif;
        letter-spacing: normal;
}
}}}

As a result, it's very difficult to override without custom CSS (especially for beginners that doen't code). Even a page builder can't edit the font without custom CSS (example with Elementor here [https://youtu.be/FW-6rbDd4WI])

Why not only use this to set the default font ? 
{{{
.entry-content{
        font-family: NonBreakingSpaceOverride, ""Hoefler Text"", Garamond, ""Times New Roman"", serif;
        letter-spacing: normal;
}
}}}

This way the main font-family is set for all the content and can be easily customized without custom CSS."	enhancement	closed	normal	5.4	Bundled Theme	5.3	normal	fixed	has-patch commit dev-reviewed fixed-major		css
