diff --git a/includes/functions/_customizer-settings.php b/includes/functions/_customizer-settings.php
index ac0ed00f..4c88af22 100644
--- a/includes/functions/_customizer-settings.php
+++ b/includes/functions/_customizer-settings.php
@@ -2619,10 +2619,7 @@ function fictioneer_add_layout_customizer_settings( $manager ) {
'priority' => 10,
'section' => 'layout',
'label' => __( 'Primary Font', 'fictioneer' ),
- 'description' => sprintf(
- __( 'Used for most of the content and as default chapter font. CSS: %s', 'fictioneer' ),
- 'var(--ff-base)
'
- ),
+ 'description' => __( 'Used for most of the content and as default chapter font. Default "Open Sans".', 'fictioneer' ),
'choices' => $font_options
)
);
@@ -2643,11 +2640,7 @@ function fictioneer_add_layout_customizer_settings( $manager ) {
'priority' => 10,
'section' => 'layout',
'label' => __( 'Secondary Font', 'fictioneer' ),
- 'description' => __( 'Used for small cards, tags, alongside icons, and in meta rows.', 'fictioneer' ),
- 'description' => sprintf(
- __( 'Used for small cards, tags, alongside icons, and in meta rows. CSS: %s', 'fictioneer' ),
- 'var(--ff-note)
'
- ),
+ 'description' => __( 'Used for small cards, tags, alongside icons, and in meta rows. Default "Lato".', 'fictioneer' ),
'choices' => $font_options
)
);
@@ -2668,10 +2661,7 @@ function fictioneer_add_layout_customizer_settings( $manager ) {
'priority' => 10,
'section' => 'layout',
'label' => __( 'Heading Font', 'fictioneer' ),
- 'description' => sprintf(
- __( 'Used for the site title plus articles, chapters, and cards. CSS: %s', 'fictioneer' ),
- 'var(--ff-heading)
'
- ),
+ 'description' => __( 'Used for the site title plus articles, chapters, and cards. Default "Open Sans".', 'fictioneer' ),
'choices' => $font_options
)
);