Clementine - Button Fonts

When editing button styles in Appearance > Customize > Colors & Fonts > Buttons, the FONT styles (font family and styles) will only work for the Advanced Button block and other buttons within the Kadence theme and Kadence blocks.

"Read More" or "Continue Reading" buttons on the blog posts and in the Post Blocks are actually normal links that are styled with CSS to appear like real buttons. The colors of these will take on the colors you set in Appearance > Customize > Colors & Fonts > Buttons. But the font family and font styles will not, due to them not being "real" buttons. 

To choose a specific font for the "Read More" buttons, copy/paste the following into the very bottom of Appearance > Customize > Additional CSS:

.entry .more-link-wrap a {
	font-family: "Poppins" !important;
	font-weight: normal !important;
	padding: 15px 24px !important;
	font-size: 11px !important;
	letter-spacing: 0.14em !important;
}

Change "Poppins" to the font name you want to use.

Change normal to bold if you want the font to be bold.

You can also adjust the padding, font size, and letter spacing if needed!