Hotcode the style inside the textbox like this
<asp:TextBox ID="TextBox1" runat="server" Text="sometext" TextMode="MultiLine" Style="font-family: Arial" />
If it is not working put your styles with not important specification.
<style type="text/css">
.font
{
font-family: Arial !important;
}
</style>
<asp:TextBox ID="TextBox1" runat="server" Text="sometext" TextMode="MultiLine" CssClass="font" />