The simple answer to this one is no, it cannot be accomplished through CSS in a consistent manner.
You could write some javascript to parse through the page and basically maintain a stack of ULs, but it would be kind of sloppy and hackish. It'd have to be something like this.
function doStyle(htmlBlock, depth)
var returnHtml = '';
// While the HTML block presented has UL tags within it
while(htmlBlock.indexOf('<ul>') > 0) {
// Take all the content up to the next/first <UL>
returnHtml += htmlBlock.substring(0, htmlBlock.indexOf('<ul>'));
// Add a styled <UL>, alternating on depth
returnHtml += '<ul class="' + (depth % 2 == 0 ? 'square' : 'circle') + '">';
// Recurse on the content inside that UL, using depth + 1
returnHtml += doStyle(htmlBlock.substring(htmlBlock.indexOf('<ul>'), htmlBlock.indexOf('</ul>')), depth + 1);
// Close the <UL>
returnHtml += '</ul>';
// Pull the whole UL block out of the remaining string
htmlBlock = htmlBlock.substring(htmlBlock.indexOf('</ul>') + 5);
}
// Return the built up string,
// And whatever is left of the original HTML block
return returnHtml + htmlBlock;
}