Hi Michelle,
You’re using GP Premium too right? If so, you can also easily do this through Appearance > Customize > Typography.
See this for reference: https://docs.generatepress.com/article/dynamic-typography-overview/
The selectors for the CSS down below (h2.wp-show-posts-entry-title
, .wp-show-posts-entry-summary
, time.wp-show-posts-entry-date
)may be used as the custom selector for your typography as such: https://share.getcloudapp.com/rRu1b0N7
Nonetheless, If you wish to use custom CSS to achieve this, here is something you may try for the title of WPSP lists:
h2.wp-show-posts-entry-title {
font-family: Georgia;
font-weight: 400;
font-size: 41px;
}
Here is for the date and excerpt:
.wp-show-posts-entry-summary {
font-size:17px;
font-weight: 400;
}
time.wp-show-posts-entry-date {
font-size:15px;
font-weight: 400;
}
Here is an article with regards to adding CSS: https://docs.generatepress.com/article/adding-css/#additional-css
Adding this through additional CSS should work.
Kindly let us know how it goes. 🙂