Whenever I
It would be nice if reportlab had native OTF support but all most people really need to use is a TrueType version of a particular OpenType fonts with reportlab, font. I just use a used this fontforge script to convert them the font I needed to TrueType insteadwith perfect results.
From http://www.se.eecs.uni-kassel.de/~thm/OpenOffice.org/bugs.html :
#!/usr/bin/fontforge
# Quick and dirty hack: converts a font to truetype (.ttf)
Print("Opening "+$1);
Open($1);
Print("Saving "+$1:r+".ttf");
Generate($1:r+".ttf");
Quit(0);
