You can override font settings in the CSS on the page where it is displayed. For example, you could wrap your bio in <div class="shortBio"></div>
and then use a css class definition like:
.shortBio {
font-size: 12px !important;
}
The !important at the end will prevent it from being overridden by the bio html.