The twitter widget has code that is setting the font-size in the linked widgit.css. I don't know if you have access to change to CSS within that file, but you can get more specific than the widget.css by targeting the div with your own style. You may have an ugly css rule but it's a quick and dirty fix.

If you can target this more specifically than the widget.css the rule should be applied. The following might work, if I'm targeting the text you had in mind.
div.twtr-tweet-wrap p {
font-size: .75em; /* set whatever font size you want */
...
}
Anyway you have the idea, just find the div you want and get specific. You could check to see what the twitter css is doing here. If you really wanted you could try and match the rule and set the font-size to inherit, so only one font-size rule would have the specific size, to ease future adjustments.