I’ve added the code to the head section per Adobe’s instructions:
<link rel=”stylesheet” href=”https://use.typekit.net/qdm6qye.css”>
I’ve added the filter to functions.php:
add_filter( ‘generate_typography_default_fonts’, function( $fonts ) {
$fonts[] = ‘kepler-std’;
return $fonts;
} );
The custom font now appears in the Customizer. I selected it for the body. It displays correctly on the front end. The font also displays in the editor, but not the correct font weight. Do I need to do something with the block editor files to display the correct font weight? It’s a minor detail, just wondering why the editor doesn’t match the front end like it’s supposed to.