This sample works fine on my Android 2.3.3 emulator (Lvl SDK 10):
http://jsfiddle.net/dE94s/3/
CSS
@import url(http://fonts.googleapis.com/css?family=Cutive+Mono); .cutive_block { font-family: 'Cutive Mono', Courier, monospace; } .monospace_block { font-family: monospace; }
HTML
<div> Some default text </div> <div class="cutive_block"> Some text in cutive mono </div> <div class="cutive_block"> And a second line that shows it monospace </div> <div class="monospace_block"> Some text in default monospace </div>

As you can see in the second and third lines that use your own font, monospaced.
So, I just use the font-family css attribute with the correct types of fallback fonts:
font-family: 'Cutive Mono', Courier, monospace;
as suggested here http://www.w3schools.com/cssref/css_websafe_fonts.asp
source share