diff --git a/scss/_variables.scss b/scss/_variables.scss
index a6e47b2857ccbd16edaa556a2c60a47aec7fc631..fb71319866a21a566a19ff00e8cca627e95b5f40 100644
--- a/scss/_variables.scss
+++ b/scss/_variables.scss
@@ -572,6 +572,7 @@ $btn-transition:              color .15s ease-in-out, background-color .15s ease
 $form-text-margin-top:                  .25rem !default;
 $form-text-font-size:                   $small-font-size !default;
 $form-text-font-style:                  null !default;
+$form-text-font-weight:                 null !default;
 $form-text-color:                       $text-muted !default;
 
 $form-label-margin-bottom:              .5rem !default;
diff --git a/scss/forms/_form-text.scss b/scss/forms/_form-text.scss
index e25bbeb1d83bff5413c482082c14f863d2e429e1..f080d1a23437b8d2bfc4a0109dd998661fcff87f 100644
--- a/scss/forms/_form-text.scss
+++ b/scss/forms/_form-text.scss
@@ -6,5 +6,6 @@
   margin-top: $form-text-margin-top;
   @include font-size($form-text-font-size);
   font-style: $form-text-font-style;
+  font-weight: $form-text-font-weight;
   color: $form-text-color;
 }