To fix this while still having tabs in the titlebar, I edited
C:\Program Files (x86)\Stardock\WindowBlinds\ff.css
and replaced the entire contents of the file with:
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
#main-window {
  -moz-appearance: -moz-win-glass !important;
}
#titlebar-buttonbox > toolbarbutton {
  /* hide fake min-max-close */
  display: none !important;
}
#browser-panel > :not(toolbox) {
  /* don't needlessly apply blur on main content */
  -moz-appearance: -moz-win-exclude-glass; 
}
.tabbrowser-tab {
  /* makes text display properly, but there's probably a better way to achieve this */
  opacity: 0.98 !important; 
}
There's still a few issues with this (the tab opacity is very slightly below 100% otherwise the text would glitch out, and if you click the close button with more than one tab open there's sometimes a graphical error), but for the most part, this works well.